home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / rettig.arc / TRSOURCE.EXE / FILES.C < prev    next >
C/C++ Source or Header  |  1990-10-22  |  356b  |  21 lines

  1. /*********
  2. *
  3. *  FILES.C
  4. *
  5. *  by Ralph Davis
  6. *
  7. * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
  8. *
  9. *  Syntax:  FILES()
  10. *  Return:  <expN> indicating number of files on FILES= line in CONFIG.SYS
  11. *********/
  12.  
  13. #include "trlib.h"
  14.  
  15. TRTYPE files()
  16. {
  17.    char *confparm = "FILES";
  18.    _retnd((double) (_tr_doscnf(confparm)));
  19. }
  20.  
  21.